SetEsriPeStringFloat Subroutine

private subroutine SetEsriPeStringFloat(string, layer)

set the esri pe string of a float grid

Arguments

Type IntentOptional Attributes Name
character(len=*), intent(in) :: string
type(grid_real), intent(inout) :: layer

Source Code

SUBROUTINE SetEsriPeStringFloat &
!
(string, layer)

IMPLICIT NONE

!Arguments with intent(in):
CHARACTER (LEN = *), INTENT(IN) :: string

!Arguments with intent(out):
TYPE(grid_real), INTENT(INOUT) :: layer

!------------end of declaration------------------------------------------------

layer % esri_pe_string = string

END SUBROUTINE SetEsriPeStringFloat